Skip to main content
Glama

MCP-RSS-Crawler

by mshk
page.tsx444 B
'use client'; import { useParams } from 'next/navigation'; import Layout from '@/components/Layout'; import FeedItemDetail from '@/components/FeedItemDetail'; export default function ItemPage() { const params = useParams(); const itemId = typeof params.id === 'string' ? decodeURIComponent(params.id) : ''; return ( <Layout> <div className="py-6"> <FeedItemDetail itemId={itemId} /> </div> </Layout> ); }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mshk/mcp-rss-crawler'

If you have feedback or need assistance with the MCP directory API, please join our Discord server